From db94501ddad5ec12663e1a510a9a0a230e6ae594 Mon Sep 17 00:00:00 2001 From: Allan Gomes Date: Mon, 19 Aug 2024 02:02:27 -0300 Subject: [PATCH] change package name to my new username. --- README.md | 10 ++--- gradle.properties | 2 +- lib/build.gradle.kts | 14 +++---- .../kotlinwind/css/Colors.kt | 8 ++-- .../kotlinwind/css/DSL.kt | 6 +-- .../kotlinwind/css/Sizes.kt | 6 +-- .../kotlinwind/css/Tokens.kt | 6 +-- .../allangomes/kotlinwind/css/api/KWRoot.kt | 5 +++ .../kotlinwind/css/api/KWScope.kt | 2 +- .../kotlinwind/css/api/Style.kt | 2 +- .../kotlinwind/css/config/Theme.kt | 4 +- .../kotlinwind/css/core/ColorToken.kt | 2 +- .../kotlinwind/css/core/Consts.kt | 2 +- .../kotlinwind/css/core/DSLMarkers.kt | 2 +- .../kotlinwind/css/core/WithFloatAndInt.kt | 2 +- .../kotlinwind/css/core/WithPercentual.kt | 2 +- .../kotlinwind/css/core/WithToken.kt | 2 +- .../kotlinwind/css/core/WithTokenAndFloat.kt | 2 +- .../kotlinwind/css/core/WithTokenAndInt.kt | 2 +- .../kotlinwind/css/core/WithTokenAndNumber.kt | 2 +- .../kotlinwind/css/core/tokens/ColorTokens.kt | 10 ++--- .../kotlinwind/css/core/tokens/Token.kt | 4 +- .../css/extensions/StyleExtensions.kt | 4 +- .../kotlinwind/css/features/AspectRatio.kt | 8 ++-- .../kotlinwind/css/features/BreakAfter.kt | 8 ++-- .../kotlinwind/css/features/BreakBefore.kt | 8 ++-- .../kotlinwind/css/features/Clear.kt | 8 ++-- .../kotlinwind/css/features/Display.kt | 8 ++-- .../kotlinwind/css/features/Floats.kt | 8 ++-- .../kotlinwind/css/features/ObjectFit.kt | 8 ++-- .../kotlinwind/css/features/ObjectPosition.kt | 8 ++-- .../kotlinwind/css/features/Position.kt | 8 ++-- .../kotlinwind/css/features/PositionBottom.kt | 12 +++--- .../kotlinwind/css/features/PositionInset.kt | 6 +-- .../kotlinwind/css/features/PositionLeft.kt | 12 +++--- .../kotlinwind/css/features/PositionRight.kt | 12 +++--- .../kotlinwind/css/features/PositionTop.kt | 12 +++--- .../kotlinwind/css/features/Root.kt | 38 ++++++++++--------- .../css/features/background/Background.kt | 6 +-- .../features/background/BackgroundColor.kt | 13 +++++++ .../features/background/BackgroundImage.kt | 19 ++++++++++ .../features/background/BackgroundOrigin.kt | 8 ++-- .../features/background/BackgroundPosition.kt | 8 ++-- .../features/background/BackgroundRepeat.kt | 8 ++-- .../css/features/background/BackgroundSize.kt | 8 ++-- .../kotlinwind/css/features/border/Border.kt | 19 ++++++++++ .../css/features/border/BorderColor.kt | 13 +++++++ .../css/features/border/BorderRadius.kt | 10 ++--- .../css/features/border/BorderWidth.kt | 6 +-- .../kotlinwind/css/features/box/Box.kt | 9 +++++ .../css/features/box/BoxDecoration.kt | 8 ++-- .../kotlinwind/css/features/box/BoxSizing.kt | 8 ++-- .../css/features/commom/AlignContent.kt | 8 ++-- .../css/features/commom/AlignItems.kt | 8 ++-- .../kotlinwind/css/features/commom/Color.kt | 10 ++--- .../css/features/commom/ColorIndex.kt | 7 ++++ .../kotlinwind/css/features/commom/Gap.kt | 6 +-- .../css/features/commom/JustifyContent.kt | 8 ++-- .../css/features/commom/JustifyItems.kt | 8 ++-- .../css/features/commom/JustifySelf.kt | 8 ++-- .../kotlinwind/css/features/commom/Order.kt | 10 ++--- .../kotlinwind/css/features/commom/Size.kt | 8 ++-- .../kotlinwind/css/features/flex/Flex.kt | 36 ++++++++++++++++++ .../css/features/flex/FlexDirection.kt | 12 +++--- .../kotlinwind/css/features/flex/FlexGrow.kt | 18 +++++++++ .../css/features/flex/FlexShrink.kt | 8 ++-- .../kotlinwind/css/features/flex/FlexWrap.kt | 8 ++-- .../kotlinwind/css/features/font/Font.kt | 12 ++++++ .../css/features/font/FontFamily.kt | 16 ++++---- .../kotlinwind/css/features/font/FontSize.kt | 17 +++++---- .../kotlinwind/css/features/font/FontStyle.kt | 8 ++-- .../css/features/font/FontVariantNumeric.kt | 8 ++-- .../css/features/font/FontWeight.kt | 8 ++-- .../kotlinwind/css/features/grid/Grid.kt | 15 ++++++++ .../kotlinwind/css/features/margin/Margin.kt | 12 +++--- .../css/features/padding/Padding.kt | 12 +++--- .../kotlinwind/css/features/sizing/Height.kt | 6 +-- .../kotlinwind/css/features/sizing/Size.kt | 6 +-- .../kotlinwind/css/features/sizing/Sizing.kt | 3 ++ .../kotlinwind/css/features/sizing/Width.kt | 6 +-- .../kotlinwind/css/features/text/Text.kt | 10 +++++ .../kotlinwind/css/features/text/TextAlign.kt | 8 ++-- .../css/features/text/TextAlignVertical.kt | 8 ++-- .../kotlinwind/css/features/text/TextColor.kt | 13 +++++++ .../text_decoration/TextDecoration.kt | 8 ++-- .../text_decoration/TextDecorationColor.kt | 13 +++++++ .../text_decoration/TextDecorationStyle.kt | 8 ++-- .../TextDecorationThickness.kt | 10 ++--- .../text_decoration/TextUnderlineOffset.kt | 10 ++--- .../allangomessl/kotlinwind/css/api/KWRoot.kt | 5 --- .../features/background/BackgroundColor.kt | 13 ------- .../features/background/BackgroundImage.kt | 19 ---------- .../kotlinwind/css/features/border/Border.kt | 19 ---------- .../css/features/border/BorderColor.kt | 13 ------- .../kotlinwind/css/features/box/Box.kt | 9 ----- .../css/features/commom/ColorIndex.kt | 7 ---- .../kotlinwind/css/features/flex/Flex.kt | 36 ------------------ .../kotlinwind/css/features/flex/FlexGrow.kt | 18 --------- .../kotlinwind/css/features/font/Font.kt | 12 ------ .../kotlinwind/css/features/grid/Grid.kt | 15 -------- .../kotlinwind/css/features/sizing/Sizing.kt | 3 -- .../kotlinwind/css/features/text/Text.kt | 10 ----- .../kotlinwind/css/features/text/TextColor.kt | 13 ------- .../text_decoration/TextDecorationColor.kt | 13 ------- .../kotlinwind/css/ColorsTest.kt | 2 +- .../kotlinwind/css/config/ColorsTest.kt | 4 +- .../css/extensions/StyleExtensionsTest.kt | 4 +- .../css/features/AspectRatioTest.kt | 8 ++-- .../kotlinwind/css/features/BreakAfterTest.kt | 8 ++-- .../css/features/BreakBeforeTest.kt | 8 ++-- .../kotlinwind/css/features/ClearTest.kt | 8 ++-- .../kotlinwind/css/features/DisplayTest.kt | 8 ++-- .../kotlinwind/css/features/FloatsTest.kt | 8 ++-- .../kotlinwind/css/features/ObjectFitTest.kt | 8 ++-- .../css/features/ObjectPositionTest.kt | 8 ++-- .../css/features/PositionBottomTest.kt | 8 ++-- .../css/features/PositionInsetTest.kt | 10 ++--- .../css/features/PositionLeftTest.kt | 8 ++-- .../css/features/PositionRightTest.kt | 8 ++-- .../kotlinwind/css/features/PositionTest.kt | 8 ++-- .../css/features/PositionTopTest.kt | 8 ++-- .../background/BackgroundColorTest.kt | 8 ++-- .../background/BackgroundImageTest.kt | 8 ++-- .../background/BackgroundOriginTest.kt | 8 ++-- .../background/BackgroundPositionTest.kt | 8 ++-- .../background/BackgroundRepeatTest.kt | 8 ++-- .../features/background/BackgroundSizeTest.kt | 8 ++-- .../css/features/box/BoxDecorationTest.kt | 8 ++-- .../css/features/box/BoxSizingTest.kt | 8 ++-- .../css/features/common/AlignContentTest.kt | 8 ++-- .../css/features/common/AlignItemsTest.kt | 8 ++-- .../css/features/common/ColorTest.kt | 10 ++--- .../kotlinwind/css/features/common/GapTest.kt | 12 +++--- .../css/features/common/JustifyContentTest.kt | 8 ++-- .../css/features/common/JustifyItemsTest.kt | 8 ++-- .../css/features/common/JustifySelfTest.kt | 8 ++-- .../css/features/common/OrderTest.kt | 8 ++-- .../css/features/flex/FlexDirectionTest.kt | 14 +++---- .../css/features/flex/FlexGrowTest.kt | 8 ++-- .../css/features/flex/FlexShrinkTest.kt | 8 ++-- .../kotlinwind/css/features/flex/FlexTest.kt | 8 ++-- .../css/features/flex/FlexWrapTest.kt | 8 ++-- .../css/features/font/FontFamilyTest.kt | 16 ++++---- .../css/features/font/FontSizeTest.kt | 16 ++++---- .../css/features/font/FontStyleTest.kt | 8 ++-- .../kotlinwind/css/features/font/FontTest.kt | 4 +- .../features/font/FontVariantNumericTest.kt | 8 ++-- .../css/features/font/FontWeightTest.kt | 8 ++-- .../css/features/margin/MarginTest.kt | 12 +++--- .../css/features/padding/PaddingTest.kt | 12 +++--- .../css/features/sizing/HeightTest.kt | 12 +++--- .../css/features/sizing/SizeTest.kt | 10 ++--- .../css/features/sizing/WidthTest.kt | 12 +++--- .../css/features/text/TextAlignTest.kt | 8 ++-- .../features/text/TextAlignVerticalTest.kt | 8 ++-- .../css/features/text/TextColorTest.kt | 8 ++-- .../TextDecorationColorTest.kt | 12 +++--- .../TextDecorationStyleTest.kt | 12 +++--- .../text_decoration/TextDecorationTest.kt | 10 ++--- .../TextDecorationThicknessTest.kt | 12 +++--- .../TextUnderlineOffsetTest.kt | 12 +++--- 161 files changed, 751 insertions(+), 746 deletions(-) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/Colors.kt (97%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/DSL.kt (53%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/Sizes.kt (95%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/Tokens.kt (75%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/KWRoot.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/api/KWScope.kt (85%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/api/Style.kt (74%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/config/Theme.kt (83%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/ColorToken.kt (53%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/Consts.kt (98%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/DSLMarkers.kt (71%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/WithFloatAndInt.kt (80%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/WithPercentual.kt (87%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/WithToken.kt (72%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/WithTokenAndFloat.kt (84%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/WithTokenAndInt.kt (82%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/WithTokenAndNumber.kt (83%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/tokens/ColorTokens.kt (76%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/core/tokens/Token.kt (82%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/extensions/StyleExtensions.kt (57%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/AspectRatio.kt (79%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/BreakAfter.kt (79%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/BreakBefore.kt (79%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/Clear.kt (72%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/Display.kt (90%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/Floats.kt (69%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/ObjectFit.kt (70%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/ObjectPosition.kt (82%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/Position.kt (68%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionBottom.kt (63%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionInset.kt (92%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionLeft.kt (62%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionRight.kt (62%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionTop.kt (61%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/Root.kt (57%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/Background.kt (58%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/background/BackgroundColor.kt create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/background/BackgroundImage.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundOrigin.kt (73%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundPosition.kt (81%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundRepeat.kt (74%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundSize.kt (58%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/border/Border.kt create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/border/BorderColor.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/border/BorderRadius.kt (93%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/border/BorderWidth.kt (90%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/box/Box.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/box/BoxDecoration.kt (55%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/box/BoxSizing.kt (51%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/AlignContent.kt (88%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/AlignItems.kt (80%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/Color.kt (90%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/commom/ColorIndex.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/Gap.kt (80%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/JustifyContent.kt (87%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/JustifyItems.kt (77%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/JustifySelf.kt (80%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/Order.kt (70%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/commom/Size.kt (76%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/flex/Flex.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexDirection.kt (55%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/flex/FlexGrow.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexShrink.kt (50%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexWrap.kt (59%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/font/Font.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontFamily.kt (68%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontSize.kt (66%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontStyle.kt (52%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontVariantNumeric.kt (89%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontWeight.kt (83%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/grid/Grid.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/margin/Margin.kt (88%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/padding/Padding.kt (89%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/sizing/Height.kt (79%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/sizing/Size.kt (83%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/sizing/Sizing.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/sizing/Width.kt (79%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/text/Text.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text/TextAlign.kt (71%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text/TextAlignVertical.kt (58%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/text/TextColor.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextDecoration.kt (54%) create mode 100644 lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/features/text_decoration/TextDecorationColor.kt rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextDecorationStyle.kt (70%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextDecorationThickness.kt (76%) rename lib/src/main/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextUnderlineOffset.kt (74%) delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/api/KWRoot.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/background/BackgroundColor.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/background/BackgroundImage.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/border/Border.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/border/BorderColor.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/box/Box.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/commom/ColorIndex.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/flex/Flex.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/flex/FlexGrow.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/font/Font.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/grid/Grid.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/sizing/Sizing.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/text/Text.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/text/TextColor.kt delete mode 100644 lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/features/text_decoration/TextDecorationColor.kt rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/ColorsTest.kt (99%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/config/ColorsTest.kt (69%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/extensions/StyleExtensionsTest.kt (82%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/AspectRatioTest.kt (83%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/BreakAfterTest.kt (87%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/BreakBeforeTest.kt (87%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/ClearTest.kt (83%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/DisplayTest.kt (94%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/FloatsTest.kt (81%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/ObjectFitTest.kt (81%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/ObjectPositionTest.kt (88%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionBottomTest.kt (81%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionInsetTest.kt (89%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionLeftTest.kt (81%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionRightTest.kt (81%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionTest.kt (80%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/PositionTopTest.kt (80%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundColorTest.kt (81%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundImageTest.kt (66%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundOriginTest.kt (74%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundPositionTest.kt (88%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundRepeatTest.kt (83%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/background/BackgroundSizeTest.kt (72%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/box/BoxDecorationTest.kt (67%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/box/BoxSizingTest.kt (66%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/AlignContentTest.kt (88%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/AlignItemsTest.kt (84%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/ColorTest.kt (99%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/GapTest.kt (69%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/JustifyContentTest.kt (88%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/JustifyItemsTest.kt (79%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/JustifySelfTest.kt (82%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/common/OrderTest.kt (80%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexDirectionTest.kt (69%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexGrowTest.kt (65%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexShrinkTest.kt (65%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexTest.kt (76%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/flex/FlexWrapTest.kt (72%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontFamilyTest.kt (59%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontSizeTest.kt (90%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontStyleTest.kt (65%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontTest.kt (62%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontVariantNumericTest.kt (89%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/font/FontWeightTest.kt (90%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/margin/MarginTest.kt (92%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/padding/PaddingTest.kt (92%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/sizing/HeightTest.kt (76%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/sizing/SizeTest.kt (83%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/sizing/WidthTest.kt (76%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text/TextAlignTest.kt (82%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text/TextAlignVerticalTest.kt (72%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text/TextColorTest.kt (66%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextDecorationColorTest.kt (61%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextDecorationStyleTest.kt (78%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextDecorationTest.kt (53%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextDecorationThicknessTest.kt (86%) rename lib/src/test/kotlin/io/github/{allangomessl => allangomes}/kotlinwind/css/features/text_decoration/TextUnderlineOffsetTest.kt (84%) diff --git a/README.md b/README.md index 231734b..a23bb6f 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ # Kotlinwind CSS [![Kotlin](https://img.shields.io/badge/Kotlin-1.9.24-blue.svg?style=flat&logo=kotlin)](https://kotlinlang.org) -[![Maven Central Version](https://img.shields.io/maven-central/v/io.github.allangomessl/kotlinwind-css)](https://search.maven.org/artifact/io.github.allangomessl/kotlinwind-css) -[![Tests](https://github.com/allangomessl/kotlinwind-css/actions/workflows/on-push.yml/badge.svg?branch=dev&event=push)](https://github.com/allangomessl/kotlinwind-css/actions/workflows/on-push.yml) +[![Maven Central Version](https://img.shields.io/maven-central/v/io.github.allangomes/kotlinwind-css)](https://search.maven.org/artifact/io.github.allangomes/kotlinwind-css) +[![Tests](https://github.com/allangomes/kotlinwind-css/actions/workflows/on-push.yml/badge.svg?branch=dev&event=push)](https://github.com/allangomes/kotlinwind-css/actions/workflows/on-push.yml)

@@ -46,16 +46,16 @@ Kotlinwind CSS is built for developers who prefer a Kotlin-native way of styling To start using Kotlinwind CSS in your project, add the following dependency to your `build.gradle.kts` file: ```kotlin -implementation("io.github.allangomessl:kotlinwind-css:{VERSION}") +implementation("io.github.allangomes:kotlinwind-css:{VERSION}") ``` -Replace `{VERSION}` with the latest version available on [Maven Central](https://search.maven.org/artifact/io.github.allangomessl/kotlinwind-css). +Replace `{VERSION}` with the latest version available on [Maven Central](https://search.maven.org/artifact/io.github.allangomes/kotlinwind-css).

## Documentation -For detailed usage instructions and examples, visit the [Wiki](https://github.com/allangomessl/kotlinwind-css/wiki). +For detailed usage instructions and examples, visit the [Wiki](https://github.com/allangomes/kotlinwind-css/wiki).

diff --git a/gradle.properties b/gradle.properties index 500ad94..8643e09 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,5 +4,5 @@ org.gradle.parallel=true org.gradle.caching=true -group=io.github.allangomessl +group=io.github.allangomes version=0.0.1 diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 5e6527b..776b106 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -24,7 +24,7 @@ mavenPublishing { )) coordinates( - groupId = "io.github.allangomessl", + groupId = "io.github.allangomes", artifactId = "kotlinwind-css", version = "0.0.1" ) @@ -33,7 +33,7 @@ mavenPublishing { name.set("Kotlinwind CSS") description.set("HTML styling inspired on tailwind.css") inceptionYear.set("2024") - url.set("https://github.com/allangomessl/kotlinwind-css/") + url.set("https://github.com/allangomes/kotlinwind-css/") licenses { license { name.set("The Apache License, Version 2.0") @@ -43,15 +43,15 @@ mavenPublishing { } developers { developer { - id.set("allangomessl") + id.set("allangomes") name.set("Allan Gomes") - url.set("https://github.com/allangomessl/") + url.set("https://github.com/allangomes/") } } scm { - url.set("https://github.com/allangomessl/kotlinwind-css/") - connection.set("scm:git:git://github.com/allangomessl/kotlinwind-css.git") - developerConnection.set("scm:git:ssh://git@github.com/allangomessl/kotlinwind-css.git") + url.set("https://github.com/allangomes/kotlinwind-css/") + connection.set("scm:git:git://github.com/allangomes/kotlinwind-css.git") + developerConnection.set("scm:git:ssh://git@github.com/allangomes/kotlinwind-css.git") } } diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Colors.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Colors.kt similarity index 97% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Colors.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Colors.kt index a896e37..56f1906 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Colors.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Colors.kt @@ -1,10 +1,10 @@ @file:Suppress("unused") -package io.github.allangomessl.kotlinwind.css +package io.github.allangomes.kotlinwind.css -import io.github.allangomessl.kotlinwind.css.core.StyleValueMarker -import io.github.allangomessl.kotlinwind.css.core.tokens.ColorTokens -import io.github.allangomessl.kotlinwind.css.core.tokens.Token +import io.github.allangomes.kotlinwind.css.core.StyleValueMarker +import io.github.allangomes.kotlinwind.css.core.tokens.ColorTokens +import io.github.allangomes.kotlinwind.css.core.tokens.Token sealed interface ColorIndex diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/DSL.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/DSL.kt similarity index 53% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/DSL.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/DSL.kt index 886badc..58d41d9 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/DSL.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/DSL.kt @@ -1,9 +1,9 @@ @file:Suppress("FunctionName", "unused") -package io.github.allangomessl.kotlinwind.css +package io.github.allangomes.kotlinwind.css -import io.github.allangomessl.kotlinwind.css.core.StyleMarker -import io.github.allangomessl.kotlinwind.css.features.Root +import io.github.allangomes.kotlinwind.css.core.StyleMarker +import io.github.allangomes.kotlinwind.css.features.Root object KW { @StyleMarker diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Sizes.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Sizes.kt similarity index 95% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Sizes.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Sizes.kt index 35c127a..06bafba 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Sizes.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Sizes.kt @@ -1,9 +1,9 @@ @file:Suppress("unused") -package io.github.allangomessl.kotlinwind.css +package io.github.allangomes.kotlinwind.css -import io.github.allangomessl.kotlinwind.css.core.StyleValueMarker -import io.github.allangomessl.kotlinwind.css.core.tokens.Token +import io.github.allangomes.kotlinwind.css.core.StyleValueMarker +import io.github.allangomes.kotlinwind.css.core.tokens.Token @StyleValueMarker object XS : Token({ diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Tokens.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Tokens.kt similarity index 75% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Tokens.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Tokens.kt index 8ac6875..76b1190 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/Tokens.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/Tokens.kt @@ -1,7 +1,7 @@ -package io.github.allangomessl.kotlinwind.css +package io.github.allangomes.kotlinwind.css -import io.github.allangomessl.kotlinwind.css.core.StyleValueMarker -import io.github.allangomessl.kotlinwind.css.core.tokens.Token +import io.github.allangomes.kotlinwind.css.core.StyleValueMarker +import io.github.allangomes.kotlinwind.css.core.tokens.Token @StyleValueMarker object SANS : Token({ diff --git a/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/KWRoot.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/KWRoot.kt new file mode 100644 index 0000000..38730a1 --- /dev/null +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/KWRoot.kt @@ -0,0 +1,5 @@ +package io.github.allangomes.kotlinwind.css.api + +interface KWRoot { + fun append(style: Style) +} diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/api/KWScope.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/KWScope.kt similarity index 85% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/api/KWScope.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/KWScope.kt index e56ada1..9b1d6f7 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/api/KWScope.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/KWScope.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.api +package io.github.allangomes.kotlinwind.css.api interface KWScope { infix fun String.value(value: String): T diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/api/Style.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/Style.kt similarity index 74% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/api/Style.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/Style.kt index 083c52c..baea2e3 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/api/Style.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/api/Style.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.api +package io.github.allangomes.kotlinwind.css.api data class Style( val key: String, diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/config/Theme.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/config/Theme.kt similarity index 83% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/config/Theme.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/config/Theme.kt index 387ae86..52f0697 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/config/Theme.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/config/Theme.kt @@ -1,6 +1,6 @@ -package io.github.allangomessl.kotlinwind.css.config +package io.github.allangomes.kotlinwind.css.config -import io.github.allangomessl.kotlinwind.css.core.tokens.Token +import io.github.allangomes.kotlinwind.css.core.tokens.Token object Theme { diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/ColorToken.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/ColorToken.kt similarity index 53% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/ColorToken.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/ColorToken.kt index 84ad1a3..3c58cbb 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/ColorToken.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/ColorToken.kt @@ -1,4 +1,4 @@ -//package io.github.allangomessl.kotlinwind.css.core +//package io.github.allangomes.kotlinwind.css.core // //@JvmInline //value class ColorToken(val value: String) diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/Consts.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/Consts.kt similarity index 98% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/Consts.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/Consts.kt index f7ca78b..df08758 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/Consts.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/Consts.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core const val ALIGN_CONTENT = "align-content" const val ALIGN_ITEMS = "align-items" diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/DSLMarkers.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/DSLMarkers.kt similarity index 71% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/DSLMarkers.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/DSLMarkers.kt index e035010..52fb6c2 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/DSLMarkers.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/DSLMarkers.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core @DslMarker annotation class StyleMarker diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithFloatAndInt.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithFloatAndInt.kt similarity index 80% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithFloatAndInt.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithFloatAndInt.kt index 96bbfe3..4019211 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithFloatAndInt.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithFloatAndInt.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core class WithFloatAndInt( private val block: Function1 diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithPercentual.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithPercentual.kt similarity index 87% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithPercentual.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithPercentual.kt index 7836d97..6c1341d 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithPercentual.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithPercentual.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core class WithPercentual( private val block: Function1 diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithToken.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithToken.kt similarity index 72% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithToken.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithToken.kt index 00b639d..a137154 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithToken.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithToken.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core class WithToken( private val block: Function1 diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndFloat.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndFloat.kt similarity index 84% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndFloat.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndFloat.kt index efc6fe2..acadb5b 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndFloat.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndFloat.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core //class WithTokenAndFloat( // private val block1: Function1, diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndInt.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndInt.kt similarity index 82% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndInt.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndInt.kt index ee99465..eb19e1f 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndInt.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndInt.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core class WithTokenAndInt( private val block1: Function1, diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndNumber.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndNumber.kt similarity index 83% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndNumber.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndNumber.kt index 92d9ae9..2192096 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/WithTokenAndNumber.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/WithTokenAndNumber.kt @@ -1,4 +1,4 @@ -package io.github.allangomessl.kotlinwind.css.core +package io.github.allangomes.kotlinwind.css.core class WithTokenAndNumber( private val block1: Function1, diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/tokens/ColorTokens.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/tokens/ColorTokens.kt similarity index 76% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/tokens/ColorTokens.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/tokens/ColorTokens.kt index 8c9de1a..04f32c9 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/tokens/ColorTokens.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/tokens/ColorTokens.kt @@ -1,9 +1,9 @@ -package io.github.allangomessl.kotlinwind.css.core.tokens +package io.github.allangomes.kotlinwind.css.core.tokens -import io.github.allangomessl.kotlinwind.css.* -import io.github.allangomessl.kotlinwind.css.config.Theme -import io.github.allangomessl.kotlinwind.css.core.StyleValueMarker -import io.github.allangomessl.kotlinwind.css.core.tokens.Token.Color +import io.github.allangomes.kotlinwind.css.* +import io.github.allangomes.kotlinwind.css.config.Theme +import io.github.allangomes.kotlinwind.css.core.StyleValueMarker +import io.github.allangomes.kotlinwind.css.core.tokens.Token.Color @Suppress("LeakingThis") abstract class ColorTokens(init: TokenInit): Color { diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/tokens/Token.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/tokens/Token.kt similarity index 82% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/tokens/Token.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/tokens/Token.kt index 5eb34a3..feafd63 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/core/tokens/Token.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/core/tokens/Token.kt @@ -1,6 +1,6 @@ -package io.github.allangomessl.kotlinwind.css.core.tokens +package io.github.allangomes.kotlinwind.css.core.tokens -import io.github.allangomessl.kotlinwind.css.config.Theme +import io.github.allangomes.kotlinwind.css.config.Theme typealias TokenInit = Theme.(T) -> Unit diff --git a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/extensions/StyleExtensions.kt b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/extensions/StyleExtensions.kt similarity index 57% rename from lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/extensions/StyleExtensions.kt rename to lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/extensions/StyleExtensions.kt index c50d148..de53bd8 100644 --- a/lib/src/main/kotlin/io/github/allangomessl/kotlinwind/css/extensions/StyleExtensions.kt +++ b/lib/src/main/kotlin/io/github/allangomes/kotlinwind/css/extensions/StyleExtensions.kt @@ -1,6 +1,6 @@ -package io.github.allangomessl.kotlinwind.css.extensions +package io.github.allangomes.kotlinwind.css.extensions -import io.github.allangomessl.kotlinwind.css.api.Style +import io.github.allangomes.kotlinwind.css.api.Style fun List