From 09442e705fef20d917e25956c1d70cd491db4fd4 Mon Sep 17 00:00:00 2001 From: RivaIvanova Date: Fri, 6 Oct 2023 14:34:09 +0300 Subject: [PATCH 1/2] feat(button-group): add samples --- browser/public/index.html | 8 ++ .../inputs/button-group/alignment/.prettierrc | 11 ++ .../inputs/button-group/alignment/ReadMe.md | 51 +++++++++ .../inputs/button-group/alignment/index.html | 41 +++++++ .../button-group/alignment/package.json | 59 ++++++++++ .../alignment/sandbox.config.json | 7 ++ .../button-group/alignment/src/index.css | 10 ++ .../button-group/alignment/src/index.ts | 11 ++ .../button-group/alignment/tsconfig.json | 20 ++++ .../button-group/alignment/webpack.config.js | 105 ++++++++++++++++++ .../inputs/button-group/overview/.prettierrc | 11 ++ .../inputs/button-group/overview/ReadMe.md | 51 +++++++++ .../inputs/button-group/overview/index.html | 44 ++++++++ .../inputs/button-group/overview/package.json | 59 ++++++++++ .../button-group/overview/sandbox.config.json | 7 ++ .../button-group/overview/src/index.css | 10 ++ .../inputs/button-group/overview/src/index.ts | 40 +++++++ .../button-group/overview/tsconfig.json | 20 ++++ .../button-group/overview/webpack.config.js | 105 ++++++++++++++++++ .../inputs/button-group/selection/.prettierrc | 11 ++ .../inputs/button-group/selection/ReadMe.md | 51 +++++++++ .../inputs/button-group/selection/index.html | 47 ++++++++ .../button-group/selection/package.json | 59 ++++++++++ .../selection/sandbox.config.json | 7 ++ .../button-group/selection/src/index.css | 19 ++++ .../button-group/selection/src/index.ts | 48 ++++++++ .../button-group/selection/tsconfig.json | 20 ++++ .../button-group/selection/webpack.config.js | 105 ++++++++++++++++++ samples/inputs/button-group/size/.prettierrc | 11 ++ samples/inputs/button-group/size/ReadMe.md | 51 +++++++++ samples/inputs/button-group/size/index.html | 28 +++++ samples/inputs/button-group/size/package.json | 59 ++++++++++ .../button-group/size/sandbox.config.json | 7 ++ .../inputs/button-group/size/src/index.css | 2 + samples/inputs/button-group/size/src/index.ts | 17 +++ .../inputs/button-group/size/tsconfig.json | 20 ++++ .../button-group/size/webpack.config.js | 105 ++++++++++++++++++ .../inputs/button-group/styling/.prettierrc | 11 ++ samples/inputs/button-group/styling/ReadMe.md | 51 +++++++++ .../inputs/button-group/styling/index.html | 41 +++++++ .../inputs/button-group/styling/package.json | 59 ++++++++++ .../button-group/styling/sandbox.config.json | 7 ++ .../inputs/button-group/styling/src/index.css | 30 +++++ .../inputs/button-group/styling/src/index.ts | 11 ++ .../inputs/button-group/styling/tsconfig.json | 20 ++++ .../button-group/styling/webpack.config.js | 105 ++++++++++++++++++ 46 files changed, 1672 insertions(+) create mode 100644 samples/inputs/button-group/alignment/.prettierrc create mode 100644 samples/inputs/button-group/alignment/ReadMe.md create mode 100644 samples/inputs/button-group/alignment/index.html create mode 100644 samples/inputs/button-group/alignment/package.json create mode 100644 samples/inputs/button-group/alignment/sandbox.config.json create mode 100644 samples/inputs/button-group/alignment/src/index.css create mode 100644 samples/inputs/button-group/alignment/src/index.ts create mode 100644 samples/inputs/button-group/alignment/tsconfig.json create mode 100644 samples/inputs/button-group/alignment/webpack.config.js create mode 100644 samples/inputs/button-group/overview/.prettierrc create mode 100644 samples/inputs/button-group/overview/ReadMe.md create mode 100644 samples/inputs/button-group/overview/index.html create mode 100644 samples/inputs/button-group/overview/package.json create mode 100644 samples/inputs/button-group/overview/sandbox.config.json create mode 100644 samples/inputs/button-group/overview/src/index.css create mode 100644 samples/inputs/button-group/overview/src/index.ts create mode 100644 samples/inputs/button-group/overview/tsconfig.json create mode 100644 samples/inputs/button-group/overview/webpack.config.js create mode 100644 samples/inputs/button-group/selection/.prettierrc create mode 100644 samples/inputs/button-group/selection/ReadMe.md create mode 100644 samples/inputs/button-group/selection/index.html create mode 100644 samples/inputs/button-group/selection/package.json create mode 100644 samples/inputs/button-group/selection/sandbox.config.json create mode 100644 samples/inputs/button-group/selection/src/index.css create mode 100644 samples/inputs/button-group/selection/src/index.ts create mode 100644 samples/inputs/button-group/selection/tsconfig.json create mode 100644 samples/inputs/button-group/selection/webpack.config.js create mode 100644 samples/inputs/button-group/size/.prettierrc create mode 100644 samples/inputs/button-group/size/ReadMe.md create mode 100644 samples/inputs/button-group/size/index.html create mode 100644 samples/inputs/button-group/size/package.json create mode 100644 samples/inputs/button-group/size/sandbox.config.json create mode 100644 samples/inputs/button-group/size/src/index.css create mode 100644 samples/inputs/button-group/size/src/index.ts create mode 100644 samples/inputs/button-group/size/tsconfig.json create mode 100644 samples/inputs/button-group/size/webpack.config.js create mode 100644 samples/inputs/button-group/styling/.prettierrc create mode 100644 samples/inputs/button-group/styling/ReadMe.md create mode 100644 samples/inputs/button-group/styling/index.html create mode 100644 samples/inputs/button-group/styling/package.json create mode 100644 samples/inputs/button-group/styling/sandbox.config.json create mode 100644 samples/inputs/button-group/styling/src/index.css create mode 100644 samples/inputs/button-group/styling/src/index.ts create mode 100644 samples/inputs/button-group/styling/tsconfig.json create mode 100644 samples/inputs/button-group/styling/webpack.config.js diff --git a/browser/public/index.html b/browser/public/index.html index 1f8e88f1ac..fe9edd6316 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -571,6 +571,14 @@ Size Styling + +